Microsoft DirectX 8.1 (C++)

CDeferredCommand::GetFlags

The GetFlags method retrieves the context flags associated with the deferred command.

Syntax

short GetFlags(void);

Return Value

Returns one of the following:

Value Description
DISPATCH_METHOD Run the member as a method. If a property has the same name, both this and the DISPATCH_PROPERTYGET flag can be set.
DISPATCH_PROPERTYGET The member is being retrieved as a property or data member.
DISPATCH_PROPERTYPUT The member is being changed as a property or data member.
DISPATCH_PROPERTYPUTREF The member is being changed via a reference assignment, rather than a value assignment. This flag is valid only when the property accepts a reference to an object.

See Also